#header {
  width: 100%;
  height: 80px;
  min-width: 1570px;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
.c_header {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.logobox {
  height: 50px;
}
.logobox > i {
  display: block;
  height: 100%;
  font-size: 0;
}
.logobox > i > img {
  height: 100%;
}
.head_menu {
  flex: 1;
  height: 100%;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  align-items: center;
}
.head_menu > li {
  padding: 0 5px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
}
.head_menu > li > a {
  width: 100%;
  padding: 10px;
  color: #282828;
}
.head_menu > li > span {
  width: 80%;
  height: 4px;
  margin: 0 auto;
}
.hoticon {
  position: absolute;
  top: -10px;
  left: 14px;
  width: 40px;
  -webkit-animation: beat 0.5s linear infinite;
  -o-animation: beat 0.5s linear infinite;
  -moz-animation: beat 0.5s linear infinite;
  animation: beat 0.5s linear infinite;
}
.hoticon > img {
  width: 100%;
}
.active_menu span {
  background: #efc02f;
}
.phoneAddress {
  height: 50px;
  justify-self: flex-end;
}
.phoneAddress > i {
  display: block;
  height: 100%;
  font-size: 0;
}
.phoneAddress > i > img {
  height: 100%;
}
@keyframes beat {
  0% {
    top: -8px;
  }
  100% {
    top: -10px;
  }
}
@-webkit-keyframes beat {
  0% {
    top: -8px;
  }
  100% {
    top: -10px;
  }
}
@-o-keyframes beat {
  0% {
    top: -8px;
  }
  100% {
    top: -10px;
  }
}
@-moz-keyframes beat {
  0% {
    top: -8px;
  }
  100% {
    top: -10px;
  }
}
